home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / gs24src.zip / README.DOC < prev    next >
Text File  |  1992-03-24  |  6KB  |  168 lines

  1.    Copyright (C) 1990, 1991 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.
  19.  
  20. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  21.  
  22. This file, readme.doc, describes problems and new features in the current
  23. release of Ghostscript.  This file describes version 2.4 of Ghostscript.
  24.  
  25. For an overview of Ghostscript and a list of the documentation files, see
  26. README.
  27.  
  28. New features
  29. ============
  30.  
  31. Note: this is not a complete list of new features.  See the most recent
  32. section of history.doc for full details.
  33.  
  34. The default MS-DOS configuration now includes VGA (default), EGA, VESA
  35. (SuperVGA), Epson, BubbleJet, PaintJet, DeskJet, and LaserJet drivers.
  36. The VESA driver is new.  There are several other new drivers as well.
  37.  
  38. A new file landscap.ps makes it easy to display landscape-mode output
  39. rotated by 90 degrees.
  40.  
  41. It is now possible to select the resolution dynamically for printers.
  42.  
  43. If one includes -dDISKFONTS in the command line, Ghostscript loads
  44. individual characters from fonts dynamically.  This may allow one to fit
  45. more fonts in RAM, at the expense of slower rendering.  This works both
  46. for Ghostscript's own fonts (except for the Courier family), and for any
  47. Type 1 fonts that do not use eexec encryption.
  48.  
  49. Type 1 fonts now do look at the Metrics information.  The Ghostscript
  50. fonts now have the same character spacing as the Adobe fonts.
  51.  
  52. clip and eoclip now intersect the new clipping path with the old one, as
  53. they should.
  54.  
  55. Transfer functions work for images.
  56.  
  57. The X11 driver includes the changes to support Ghostview.
  58.  
  59. You can now put .PFB fonts in the Fontmap directly -- you no longer need
  60. to run pfbtogs.
  61.  
  62. You can now send printer output to the printer directly, to a set of
  63. files, or (on Unix systems) to a pipe; see use.doc for details.
  64.  
  65. You can precompile fonts into C and link them into the executable.  They
  66. don't run any faster, but you eliminate the loading time.  (Don't attempt
  67. this on MS-DOS systems, unless you are using the Watcom compiler or
  68. running under Windows.)  See fonts.doc for details.
  69.  
  70. Ghostscript now implements essentially all the facilities of Display
  71. PostScript that are also in Level 2 PostScript, except for garbage
  72. collection: binary tokens, rectangles, user paths, insideness testing, and
  73. a variety of other odds and ends.  (The garbage collection operators are
  74. provided, but they have no effect.)
  75.  
  76. Changes
  77. -------
  78.  
  79. Some of the Ghostscript extensions have changed, specifically
  80. makeimagedevice, and some have been removed.  See history.doc for details.
  81.  
  82. For driver authors only: There have been incompatible changes in the
  83. gx_device structure, and in the specification of the map_rgb_color,
  84. map_color_rgb, copy_mono, and copy_color driver procedures; also, the
  85. fill_ and tile_trapezoid procedures have been removed, and new get_bits,
  86. get_props, and put_props procedures have been added.  See drivers.doc for
  87. details.
  88.  
  89. Known problems
  90. ==============
  91.  
  92. Interpreter
  93. -----------
  94.  
  95. The interactive interpreter requires that every statement fit on a line,
  96. i.e., you can't have an unpaired ( or {.
  97.  
  98. On a MS-DOS system, interrupting Ghostscript by typing ^C doesn't restore
  99. the display mode.
  100.  
  101. Operators
  102. ---------
  103.  
  104. The Ghostscript language does not include the following operators of the
  105. PostScript language:
  106.  
  107.     resetfile
  108.     banddevice, renderbands
  109.  
  110. The following are not implemented completely:
  111.  
  112.     %statementedit (file name): interpreted as equivalent to
  113. %lineedit.
  114.  
  115. Most of the new color operators, particularly those that support the CMYK
  116. color model, are implemented as Ghostscript language procedures, and they
  117. essentially emulate CMYK using RGB.
  118.  
  119. The following operators that expect arrays won't accept packed arrays:
  120.     definefont (Subrs (type 1 fonts))
  121.     setdash (dash pattern)
  122.     setcachedevice (bounding box)
  123.     makeimagedevice (palette)
  124.  
  125. The file operator only recognizes modes r and w, not the newer modes r+,
  126. w+, a, and a+.
  127.  
  128. Limitations
  129. -----------
  130.  
  131. Floating point exceptions terminate Ghostscript, rather than producing a
  132. rangecheck error.
  133.  
  134. Some access checks aren't implemented.
  135.  
  136. copypage does nothing in the MS-DOS implementation, and merely
  137. synchronizes the X connection in the Unix implementation.  showpage is a
  138. procedure that does a copypage and then beeps the bell and waits for the
  139. user to hit a key. (copypage does do the right thing for printers.)
  140.  
  141. Graphics bugs
  142. -------------
  143.  
  144. strokepath produces incorrect output for dashed lines.
  145.  
  146. The implementation only looks at the PaintType of the font when doing
  147. show, not when doing charpath.  Because of this, stroked fonts don't work
  148. correctly with charpath.
  149.  
  150. arcto gives an error for negative radii.
  151.  
  152. Halftone screens that aren't parallel to the coordinate axes may produce
  153. incorrect output: the cell is rotated, but not the tiling pattern.
  154.  
  155. Changing the contents of the Encoding array or the Metrics dictionary of a
  156. font dynamically doesn't produce the expected result (may have no effect)
  157. if character caching is enabled.
  158.  
  159. Halftone patterns "flip over" at the 50% coverage point, producing
  160. anomalous visual effects on some color devices.
  161.  
  162. Non-graphics bugs
  163. -----------------
  164.  
  165. restore doesn't properly undo currentgstate.
  166.  
  167. copy doesn't handle gstates.
  168.